{% extends "/layout.html" %} {% block head %} {{ parent() }} {[ js('browse') ]} {[ time_ago() ]} {[ js('play') ]} {% endblock %} {% block content %}
{% block sub_content %}{% endblock %}
{% block full_content %}{% endblock %} {% include "/inc/comments.html" %} {% endblock %} {% block sidebar %} {% include "/inc/profile.html" with {'user':profile, 'messages':(user.authenticated && user.id == profile.id), 'send_message':user.authenticated} %}

{{ __('statistics') }}

{{ __('profile_views', profile.views) }}

{% if profile.level != 2 %} {% endif %}
{{ __('group') }}: {{ __('user_level', profile.level) }}
{{ __('join_date') }}: {{ get_date(profile.ts_create) }}
{{ __('last_seen') }}: {[ time_ago(profile.status) ]}
{{ __('friends') }}: {{ friends_total }}
{{ __('points_per_day') }}: {{ points_per_day }}
{{ __('favourite_genre') }}: {% if favourite_genre %} {{ favourite_genre.name }} {% else %} {{ __('unknown') }} {% endif %}
{{ __('most_played') }}: {% if most_played %} {{ most_played.name }} {% else %} {{ __('unknown') }} {% endif %}
{% if profile.description %}

{{ __('description') }}

{{ profile.description }}

{% endif %} {{ parent() }} {% endblock %}